home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 December / PC Answers December 1995 (disc errors).iso / mxc / flybox3.dir / 00076_3ELK.PICT.ls < prev    next >
Encoding:
Text File  |  1995-05-02  |  453 b   |  18 lines

  1. on mouseDown
  2.   global gClickOn, listMTH
  3.   set gClickOn to the name of cast the castNum of sprite the clickOn
  4.   if (gClickOn <> getAt(listMTH, 3)) and (gClickOn <> getAt(listMTH, 6)) and (gClickOn <> getAt(listMTH, 8)) then
  5.     WrongAns()
  6.   else
  7.     if gClickOn = getAt(listMTH, 3) then
  8.       Ans1()
  9.     end if
  10.     if gClickOn = getAt(listMTH, 6) then
  11.       Ans2()
  12.     end if
  13.     if gClickOn = getAt(listMTH, 8) then
  14.       Ans3()
  15.     end if
  16.   end if
  17. end
  18.